Core Library for WPF | ComponentOne
C1.WPF.Core Namespace / DelegateCommand Class / DelegateCommand Constructor / DelegateCommand Constructor(Action<Object>)
The execute delegate.

In This Topic
    DelegateCommand Constructor(Action<Object>)
    In This Topic
    Initializes a new instance of the DelegateCommand class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal execute As Action(Of Object) _
    )
    public DelegateCommand( 
       Action<object> execute
    )

    Parameters

    execute
    The execute delegate.
    See Also